next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
</>
Loading Topics...
1
What does HNSW stand for, and at a high level, how does it achieve sub-linear approximate nearest-neighbor search?
Expert
High
2
What do the HNSW parameters m and ef_construct control, and what trade-off do they represent?
Expert
High
3
What does the query-time parameter ef (search breadth) control, and how would you use it to trade off recall against latency?
Expert
High
4
Why might increasing m significantly improve recall on one dataset but barely help - or even hurt latency - on another?
Expert
High
5
Why does Qdrant set m: 0 on a named vector used purely for reranking (e.g. a ColBERT multivector)?
Expert
High
6
What problem does vector quantization solve, and what is the fundamental trade-off it introduces?
Expert
High
7
Compare scalar quantization, product quantization, and binary quantization in Qdrant in terms of compression ratio and accuracy impact.
Expert
High
8
What are oversampling and rescoring in the context of binary quantization, and why are they necessary?
Expert
High
9
What newer quantization options - beyond the original scalar, product, and binary trio - has Qdrant introduced to fine-tune the compression/accuracy curve?
Expert
High
10
What is Inline Storage, and how does embedding quantized vectors directly into HNSW graph nodes improve disk-based search performance?
Expert
High
11
What is a multivector point, and how does it differ from a point with several named vectors?
Expert
High
12
How does late-interaction scoring (as used by ColBERT-style models) with MaxSim differ from comparing two single dense vectors?
Expert
High
13
Why is late-interaction reranking typically applied to a small candidate set rather than the entire collection?
Expert
High
14
Design a three-stage retrieval pipeline using dense retrieval, sparse retrieval, fusion, and ColBERT reranking. What does each stage contribute?
Expert
High
All Topics
1
Getting started
0/2 topics · 0%
Core Concepts
Setup and Basic Use
2
Querying vectors
0/3 topics · 0%
QueryAPIs
Named Vectors and Multitenancy
Sparse Vectors and Hybrid Search
3
Internals
0/3 topics · 0%
Snapshots and Backups
Indexing Internals
Internal Architecture
4
Operations & scale
0/3 topics · 0%
Performance and Optimisation
Security
System Design and Scalability
5
Practice
0/5 topics · 0%
Error Handling and Debugging
Testing
Design Patterns
Implementation Scenarios
Edge Cases